home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / UTILITIE / CPU_MEMO / 2363.ZIP / DISKPACK.HLP < prev    next >
Text File  |  1988-03-08  |  5KB  |  170 lines

  1.  
  2. FORMAT
  3.  
  4. The format of the Diskpack command is
  5.  
  6. [d:][path]DISKPACK [d:][path]filename[.ext] d: [options]
  7.  
  8. where
  9.  
  10. [d:][path] 
  11.    before DISKPACK specifies the drive and path that
  12.    contains the Diskpack program.  
  13.  
  14. [d:][path] 
  15.    after DISKPACK specifies the drive and path that contain
  16.    the file(s) you want to back up (source).
  17.  
  18. filename[.ext] 
  19.    specifies the file(s) you want to back up.  Global file
  20.    name characters are allowed in the file name, and cause
  21.    all of the files matching the file name to be backed up.
  22.  
  23. d: 
  24.    specifies the drive that will contain the backed up files
  25.    (target).
  26.  
  27. [options]
  28.    specifies optional parameters described below.
  29.  
  30.  
  31. OPTIONS
  32.  
  33. The following options can appear in the Diskpack command.
  34.  
  35. /? 
  36.    Display help.
  37.  
  38. /1
  39.    Do not prompt to insert the first backup disk.
  40.  
  41. /A 
  42.    Do not change the archive bit of each file copied. 
  43.    Without this option, Diskpack clears the archive bit of
  44.    each file it backs up.  When cleared, the archive bit
  45.    indicates that a file has not been changed since it was
  46.    backed up.  Whenever DOS writes to a file, it sets the
  47.    archive bit to mark it as changed.  Normally, you should
  48.    omit this option so that /M can be used to back up files
  49.    that have been modified since the last backup.
  50.  
  51. /B 
  52.    Beep when prompted to insert a disk.
  53.  
  54. /C[[d:][path]filename[.ext]]
  55.    Create a catalog file containing a list of all the files
  56.    backed up.  You can specify the name of the catalog file
  57.    (and a drive and path).  If you don't, the file
  58.    DISKPACK.CAT will be created in the current directory. 
  59.    You cannot put the catalog file on the backup disk.
  60.  
  61.    The catalog file is a DOS text file and can be viewed
  62.    using a text editor or displayed on the screen with the
  63.    DOS TYPE command.
  64.  
  65.      type diskpack.cat
  66.  
  67. /Dmm-dd-yy
  68.    Back up files that have been modified on or after the
  69.    specified date.  The format of the date specified must be
  70.    mm-dd-yy.
  71.  
  72. /H 
  73.    Include hidden files.  This will cause all files marked as
  74.    hidden to be included on the backup disks. If you're
  75.    backing up the root directory, the DOS hidden files
  76.    IBMBIO.COM and IBMDOS.COM will be copied.  You can
  77.    avoid restoring these files to a system using a different
  78.    version of DOS with the dRestore /P1 option.    
  79.  
  80. /I 
  81.    Display registration information (unregistered version
  82.    only).
  83.  
  84. /M 
  85.    Back up files that have been modified since the last
  86.    backup.  A file has been modified if its archive bit is set
  87.    (see option /A).
  88.  
  89. /P 
  90.    Display a (y/n)? prompt before copying each file.  You
  91.    can choose to back up the file or not.
  92.  
  93. /S 
  94.    Back up subdirectory files in addition to the files in the
  95.    specified or current directory.
  96.  
  97. /V 
  98.    Display a verbose description of the back up process. 
  99.  
  100. /W 
  101.    Prompt the user to press a key before reading source
  102.    file(s).
  103.  
  104.  
  105. NOTES
  106.  
  107. ⁿ  Press Ctrl-Break to stop Diskpack.
  108.  
  109. ⁿ  New disks must be formatted with the DOS FORMAT
  110.    command.
  111.  
  112. ⁿ  You can't back up to a hard disk.
  113.  
  114. ⁿ  Files are backed up from the current directory if you do
  115.    not specify a path.  
  116.  
  117. ⁿ  Files are compressed as they are copied.
  118.  
  119. ⁿ  You can't use the DIR command on backup disks.  To get
  120.    a list of files, display the catalog file or use the dRestore
  121.    /D option.
  122.  
  123. ⁿ  You can't use the COPY command to copy files contained
  124.    on backup disks.  
  125.  
  126. ⁿ  Use high quality disks.  
  127.  
  128. ⁿ  Do not use disks with bad sectors as backup disks.
  129.    Diskpack will check the File Allocation Table of each disk
  130.    and reject those that have clusters marked as bad.
  131.  
  132. ⁿ  Diskpack erases files already present on the backup disks.
  133.  
  134.  
  135. EXAMPLES
  136.  
  137. The following example backs up all the files from disk drive 
  138. C to drive A.
  139.  
  140.    diskpack c:\*.* a:/s
  141.  
  142. The following example backs up the file FILE.TXT from drive
  143. C to drive A.  A verbose description of the backup process
  144. is displayed.
  145.  
  146.    diskpack c:file.txt a:/v
  147.  
  148. The following example backs up all files from drive C that
  149. have been modified since the date 01-01-88 to drive A.
  150.  
  151.    diskpack c:\*.* a:/s/d01-01-88
  152.  
  153. The following example backs up all files from drive C to
  154. drive A that have been modified since the last backup.
  155.  
  156.    diskpack c:\*.* a:/s/m
  157.  
  158. The following example backs up all files in the current
  159. directory to drive A and creates catalog file DISKPACK.CAT
  160. in the current directory.
  161.  
  162.    diskpack *.* a:/c
  163.  
  164. The following example backs up all files with an extension
  165. WK1 in directory \123 and all subdirectories of \123 to drive
  166. A.
  167.  
  168.    diskpack \123\*.wk1 a:/s
  169.  
  170.